home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / kudzu / parallel.h < prev    next >
C/C++ Source or Header  |  2005-12-04  |  1KB  |  45 lines

  1. /* Copyright 1999-2003 Red Hat, Inc.
  2.  *
  3.  * This software may be freely redistributed under the terms of the GNU
  4.  * public license.
  5.  *
  6.  * You should have received a copy of the GNU General Public License
  7.  * along with this program; if not, write to the Free Software
  8.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  9.  *
  10.  */
  11.  
  12. #ifndef _KUDZU_PARALLEL_H_
  13. #define _KUDZU_PARALLEL_H_
  14.  
  15. #include "device.h"
  16.  
  17. struct parallelDevice {
  18.     /* common fields */
  19.     struct device *next;    /* next device in list */
  20.     int index;
  21.     enum deviceClass type;    /* type */
  22.     enum deviceBus bus;        /* bus it's attached to */
  23.     char * device;        /* device file associated with it */
  24.     char * driver;        /* driver to load, if any */
  25.     char * desc;        /* a description */
  26.     int detached;
  27.     void * classprivate;
  28.     /* parallel-specific fields */
  29.     struct parallelDevice *(*newDevice) (struct parallelDevice *dev);
  30.     void (*freeDevice) (struct parallelDevice *dev);
  31.     void (*writeDevice) (FILE *file, struct parallelDevice *dev);
  32.     int (*compareDevice) (struct parallelDevice *dev1, struct parallelDevice *dev2);
  33.     /* These are more printer-specific than parallel specific. */
  34.     /* However, we can't autoprobe other printers well, so here it stays. */
  35.     char *pnpmodel;
  36.     char *pnpmfr;
  37.     char *pnpmodes;
  38.     char *pnpdesc;
  39. };
  40.  
  41. struct parallelDevice *parallelNewDevice(struct parallelDevice *dev);
  42. struct device *parallelProbe(enum deviceClass probeClass, int probeFlags,
  43.             struct device *devlist);
  44. #endif
  45.